home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / pcuser.com / FILEXIST.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-11-05  |  264 b   |  14 lines

  1. #include <std_lib.h>
  2.  
  3. int filexist (filename)
  4. char *filename;
  5. {
  6.     FILE *fp;
  7.  
  8.     /* Return TRUE if the file already exists.
  9.      * Or FALSE if the file does not exist.
  10.      */
  11.  
  12.     return ( ((fp = fopen (filename, "r")) != NULL) ? TRUE: FALSE );
  13. }
  14.